home *** CD-ROM | disk | FTP | other *** search
- <HTMLtool>This JavaScript lets you log on to an FTP server</HTMLtool>
-
- <!-- TWO STEPS TO INSTALL FTP SERVER LOGIN:
-
- 1. Copy the coding into the HEAD of your HTML document
- 2. Add the last code into the BODY of your HTML document -->
-
- <!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
-
- <HEAD>
-
- <SCRIPT LANGUAGE="JavaScript">
-
- <!-- Begin
- function Login(form) {
- var username = form.username.value;
- var password = form.password.value;
- var server = form.server.value;
- if (username && password && server) {
- var ftpsite = "ftp://" + username + ":" + password + "@" + server;
- window.location = ftpsite;
- }
- else {
- alert("Please enter your username, password, and FTP server's address.");
- }
- }
- // End -->
- </script>
- </HEAD>
-
- <!-- STEP TWO: Copy this code into the BODY of your HTML document -->
-
- <BODY>
-
- <center>
- <form name=login>
- <table width=250 border=1 cellpadding=3>
- <tr>
- <td colspan=2 align=center><b><h2>Logon to FTP Server!</h2></b></td>
- </tr>
- <tr>
- <td>Username:</td>
- <td><input type=text name=username size=20></td>
- </tr>
- <tr>
- <td>Password:</td>
- <td><input type=password name=password size=20></td>
- </tr>
- <tr>
- <td>Server:</td>
- <td><tt>ftp://</tt><input type=text name=server size=14></td>
- </tr>
- <tr>
- <td colspan=2 align=center>
- <input type=button value="Login!" onClick="Login(this.form)"></td>
- </tr>
- </table>
- </form>
- </center>